home *** CD-ROM | disk | FTP | other *** search
/ MacFormat UK 160 - Disc 2 / MF_UK_160_2.iso / pc / DiscContent / Trials / oxygen / samples / debugger / Combining stylesheets / sample2.xsl < prev    next >
Encoding:
Extensible Markup Language  |  2005-07-21  |  589 b   |  14 lines

  1. <?xml version="1.0" encoding="UTF-8" ?>
  2. <!--    Category:    Combining Stylesheets
  3.     Sample from Zvon XSLT tutorial (www.zvon.org)  
  4.     Description:    Imports a stylesheet and changes its template. xsl-apply-imports works 
  5.         only for templates imported with xsl:import, not for templates included with xsl:include. -->
  6. <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
  7.     <xsl:import href="sample1.xsl"/>
  8.     <xsl:template match="/*/*">
  9.         <EM>
  10.             <xsl:apply-imports/>
  11.         </EM>
  12.     </xsl:template>
  13. </xsl:stylesheet>
  14.